ds_grid_sort


描述

This function can be used to sort a ds_grid based on the values from a given column (much as you would sort files by date, size etc... in the Windows Explorer). The following image shows an example:


语法:

ds_grid_sort(index, column, ascending);

参数 描述
index The index of the grid to sort.
column The column to use for sorting the rows
ascending Whether to sort lowest to highest (true), or highest to lowest (false).


返回:

N/A(无返回值)


例如:

ds_grid_sort(grid, 3, false)

This would take all the values in the ds_grid indexed in the variable "grid" and sort them according to the values found in the 3rd column of the grid (as shown in the above image).